home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2005 March / Macworld CD March 2005 - Marathon Trilogy.iso / Shareware World / iPod / iPodderX.sit / iPodderX / iPodderX.app / Contents / Resources / ImageAndTextCell.h < prev    next >
Encoding:
Text File  |  2005-01-07  |  342 b   |  20 lines

  1. //
  2. //  ImageAndTextCell.h
  3. //
  4. //  Copyright (c) 2001 Apple. All rights reserved.
  5. //
  6.  
  7. #import <Cocoa/Cocoa.h>
  8.  
  9. @interface ImageAndTextCell : NSTextFieldCell {
  10. @private
  11.     NSImage    *image;
  12. }
  13.  
  14. - (void)setImage:(NSImage *)anImage;
  15. - (NSImage *)image;
  16.  
  17. - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
  18. - (NSSize)cellSize;
  19.  
  20. @end